498799f3717fe9cbd8ad855f370f053c5b3d2b22,src/main/java/hudson/plugins/performance/TestSuiteReportDetail.java,TestSuiteReportDetail,doRespondingTimeGraphPerTestCaseMode,#StaplerRequest#StaplerResponse#,55
Before Change
}
List<HttpSample> allSamples = new ArrayList<HttpSample>();
for (UriReport currentReport : performanceReport.getUriReportMap()
.values()) {
allSamples.addAll(currentReport.getHttpSampleList());
}
Collections.sort(allSamples);
After Change
}
String testStaplerUri = PerformanceReport.asStaplerURI(testUri);
UriReport reportForTestUri = performanceReport.getUriReportMap().get(testStaplerUri);
if (reportForTestUri != null) {
for (Long duration : reportForTestUri.getDurations()) {
dataSetBuilderAverage.add(duration, testUri, label);